declarative languages - определение. Что такое declarative languages
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое declarative languages - определение

PROGRAMMING PARADIGM THAT EXPRESSES THE LOGIC OF A COMPUTATION WITHOUT DESCRIBING ITS CONTROL FLOW
Declarative programming language; Declarative (programming); Declarative language; Declarative Language; Declarative program; Declarative Programming Language; Declarative languages
Найдено результатов: 2006
declarative language         
<language> Any relational language or functional language. These kinds of programming language describe relationships between variables in terms of functions or {inference rules}, and the language executor (interpreter or compiler) applies some fixed algorithm to these relations to produce a result. Declarative languages contrast with imperative languages which specify explicit manipulation of the computer's internal state; or procedural languages which specify an explicit sequence of steps to follow. The most common examples of declarative languages are {logic programming} languages such as Prolog and {functional languages} like Haskell. See also production system. (2004-05-17)
Declarative         
WIKIMEDIA DISAMBIGUATION PAGE
Declarative (disambiguation)
·adj Making declaration, proclamation, or publication; explanatory; assertive; declaratory.
declarative         
WIKIMEDIA DISAMBIGUATION PAGE
Declarative (disambiguation)
[d?'klar?t?v]
¦ adjective of the nature of or making a declaration.
?Grammar (of a sentence or phrase) taking the form of a simple statement.
Derivatives
declaratively adverb
declarative         
WIKIMEDIA DISAMBIGUATION PAGE
Declarative (disambiguation)
a.
Monumbo languages         
Bogia languages; Bogia Bay languages
The Monumbo or Bogia Bay languages are a pair of closely related languages that constitute a branch of the Torricelli language family. They are spoken in a few coastal villages around Bogia Bay of Bogia District, Madang Province in Papua New Guinea.
Rising declarative         
Draft:Rising declarative
In linguistics, a rising declarative is an utterance which has the syntactic form of a declarative but the rising intonation typically associated with polar interrogatives.
Languages of Myanmar         
  • A map of languages used in Burma
  • 200px
  • A Burmese speaker, recorded in [[Taiwan]].
LANGUAGES OF A GEOGRAPHIC REGION
Languages of Burma; Indigenous languages of Myanmar
There are approximately a hundred languages spoken in Myanmar (also known as Burma). Burmese, spoken by two-thirds of the population, is the official language.
Sindhi languages         
GROUP OF INDO-ARYAN LANGUAGES
List of Sindhi languages
The Sindhi languages are Sindhi and those Indo-Aryan languages closest to it. They include some varieties traditionally considered to be Gujarati:
Languages of South Asia         
  • The names of each state in the script of the dominant language of that state of India, part of Pakistan, and the whole of Bangladesh, Bhutan, Maldives, Nepal, and Sri Lanka.
LANGUAGES OF A GEOGRAPHIC REGION
Languages of Indian subcontinent; South Asian languages; Languages of the Indian subcontinent; Indo languages
South Asia is home to several hundred languages, spanning the countries of Afghanistan, Bangladesh, Bhutan, India, Nepal, Pakistan, Maldives and Sri Lanka. It is home to the third most spoken language in the world, Hindi–Urdu; and the sixth most spoken language, Bengali.
Nahuan languages         
LANGUAGE FAMILY IN NORTH AMERICA
Nahuatlan; Nahuan languages/archive; Nahuatlan Stock; Nahuatl Dialects; Nahuatl languages; Aztecan languages; General Aztec; General Aztec languages; List of Nahuan languages; Aztecan; Aztec languages; Nahuatl dialect; Nahua languages; Nahuan language; Náhuatl de Oaxaca; Nahuatl dialects; Nahuatl varieties; Nahuatl dialectology
The Nahuan or Aztecan languages are those languages of the Uto-Aztecan language family that have undergone a sound change, known as Whorf's law, that changed an original *t to before *a. Subsequently, some Nahuan languages have changed this to or back to , but it can still be seen that the language went through a stage.

Википедия

Declarative programming

In computer science, declarative programming is a programming paradigm—a style of building the structure and elements of computer programs—that expresses the logic of a computation without describing its control flow.

Many languages that apply this style attempt to minimize or eliminate side effects by describing what the program must accomplish in terms of the problem domain, rather than describing how to accomplish it as a sequence of the programming language primitives (the how being left up to the language's implementation). This is in contrast with imperative programming, which implements algorithms in explicit steps.

Declarative programming often considers programs as theories of a formal logic, and computations as deductions in that logic space. Declarative programming may greatly simplify writing parallel programs.

Common declarative languages include those of database query languages (e.g., SQL, XQuery), regular expressions, logic programming, functional programming, and configuration management systems.